home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / anacron.postrm < prev    next >
Text File  |  2008-09-02  |  313b  |  17 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. if [ "$1" = "purge" ]; then
  6. # here for historical reasons
  7.     rm -f /var/log/anacron /var/log/anacron.[0-9]*
  8.     rm -rf /var/spool/anacron
  9. fi
  10.  
  11. # Automatically added by dh_installinit
  12. if [ "$1" = "purge" ] ; then
  13.     update-rc.d anacron remove >/dev/null || exit $?
  14. fi
  15. # End automatically added section
  16.  
  17.